home *** CD-ROM | disk | FTP | other *** search
/ Hunter 2006 / Hunter 2006.iso / soft / sleipnir241.exe / {app} / scripts / ƒŠƒ“ƒNˆ— / LINKæ‚ðƒ_ƒbƒvƒAƒbƒv• / Ž¦.js
Text File  |  2006-06-15  |  813b  |  30 lines

  1. /*==========================================================
  2. Script by jin-ren
  3. ü@LINKɵé≡â|âbâvâAâbâvò\Ī
  4. ü@LINKæSé─é╔title=urlé≡É▌ÆΦé╡é▄é╖üB
  5. ü@é▒éΩé╔éµéΦâ}âEâXé≡LINKé╔ìçéφé╣éΘé╛é»é┼URLé¬â|âbâvâAâbâvé│éΩé▄é╖
  6.                                                 2002/09/08
  7. ==========================================================*/
  8.   var obj, document, id, x, strAddlink;
  9.  
  10.   obj = new ActiveXObject("Sleipnir.API");
  11.   id = obj.GetDocumentID(obj.ActiveIndex);
  12.   document = obj.GetDocumentObject(id);
  13.  
  14.   if (document == null)
  15.   {
  16.     obj.MessageBox("Document é≡ì∞ɼé┼é½é▄é╣é±");
  17.   }
  18.   else
  19.   {
  20.     var atag=document.links;
  21.     for (i in atag){
  22.       x = atag[i].href;
  23.       if(x==null){continue;}
  24.       atag[i].title=atag[i].href;
  25.     }
  26.     document = null;
  27.   }
  28.   obj.beep();
  29.   obj = null;
  30.